home *** CD-ROM | disk | FTP | other *** search
/ Practical Algorithms for Image Analysis / Practical Algorithms for Image Analysis.iso / LIBIP / IP.C < prev    next >
C/C++ Source or Header  |  1999-09-11  |  539b  |  32 lines

  1. /* 
  2.  * ip.c
  3.  * 
  4.  * Practical Algorithms for Image Analysis
  5.  * 
  6.  * Copyright (c) 1997, 1998, 1999 MLMSoftwareGroup, LLC
  7.  */
  8.  
  9. /*
  10.  * General purpose functions contained here
  11.  */
  12.  
  13. #include "ip.h"
  14.  
  15. /*
  16.  * exitmess()
  17.  *   DESCRIPTION:
  18.  *     exitmess exits the current program with the supplied status code
  19.  *   ARGUMENTS:
  20.  *     prompt(char *) message to print on STDOUT
  21.  *     status(int) exit code for current program
  22.  *   RETURN VALUE:
  23.  *     none
  24.  */
  25.  
  26. void
  27. exitmess (char *prompt, int status)
  28. {
  29.   printf ("%s\n", prompt);
  30.   exit (status);
  31. }
  32.